home *** CD-ROM | disk | FTP | other *** search
- /*
- File: DragCons.h
-
- Contains: Constant definitions for DragText
-
- Owned by: Craig Carper
-
- Copyright: © 1993-1995 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <3> 10/13/95 EL 1287340: Use standard ISO prefix
- <2> 6/29/95 CC Added defaultTextFace constant.
- <1> 6/28/95 CC first checked in
-
- */
-
- #ifndef _DRAGCONS_
- #define _DRAGCONS_
-
- const ODPropertyName kDragTextPropText = "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:DragText:Property:Text"; // Text
- const ODPropertyName kDragTextPropStyl = "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:DragText:Property:Style"; // Style record
- const ODPropertyName kDragTextPropSourceLink = "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:DragText:Property:SourceLink";
- const ODPropertyName kDragTextPropDestLink = "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:DragText:Property:DestLink";
-
- const ODPropertyName kDragTextUndoInfo = "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:DragText:Property:UndoInfo";
-
- const ODValueType kDragTextValue = "+//ISO 9070/ANSI::113722::US::CI LABS::Apple:DragText:Type:Value";
-
- const ODValueType kODAppleTEXT = "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:ScrapType:TEXT";
- const ODValueType kODApplestyl = "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:ScrapType:styl";
- const ODValueType kODApplestxt = "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:ScrapType:stxt";
-
- const ODValueType kODAppleFileTEXT= "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:FileType:TEXT";
- const ODValueType kODApplehfs = "+//ISO 9070/ANSI::113722::US::CI LABS::MacOS:ScrapType:hfs ";
-
- // DragText error codes
- const ODULong kDragTextErrInvalidLink = 7787;
- const ODULong kDragTextErrNoSupportedContent = 7788;
- const ODULong kDragTextErrCannotTranslate = 7789;
- const ODULong kDragTextErrTranslateLinkError = 7790;
- const ODULong kDragTextErrCantReadTEXTFile = 7791;
- const ODULong kDragTextErrFileTooLarge = 7792;
- const ODULong kDragTextErrTooMuchText = 7793;
- const ODULong kDragTextBogusTextSize = 7794;
-
- const ODISOStr kDummyLinkSpecData = "LinkSpec test data";
-
- const ODULong kMaxTextSize = 20000;
-
- #define TopMargin 6
- #define LeftMargin 6
- #define RightMargin 6
- #define BottomMargin 6
-
- #define ScrollResolution 12
-
- const ODSShort defaultFontSize = 12;
- const ODSShort defaultFontNum = 1; // Application font
- const ODSShort defaultFontFace = 0; // Plain face
-
- #endif // _DRAGCONS_
-